home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-02-26 | 757 b | 53 lines | [TEXT/MPS ] |
- #define SystemSevenOrLater 1
-
- #define UseExtendedThingResource 1
-
- #include "Types.r"
- #include "MovieThingsRez.h"
-
- type 'clok' {
- hex string;
- };
-
-
- resource 'thng' (-1212, "Tick Clock") {
- 'clok',
- 'micr',
- 'appl',
- 0x40000001 | cmpWantsRegisterMessage,
- 0,
- 'clok',
- -1212,
- 'STR ',
- -1212,
- 'STR ',
- -1213,
- 0,
- 0,
-
- 0x0, /* version */
- componentWantsUnregister,
- 0,
- {}
- };
-
- resource 'STR ' ( -1212) {
- "Apple Sound Clock"
- };
-
- resource 'STR ' ( -1213) {
- "Provides a sound interrupt based Clock for QuickTime"
- };
-
- #ifdef wayCoolBuild
-
- Include $$Shell("RsrcDir")"SoundClock.rsrc" 'proc' (0) as 'clok' ( -1212, "Sound Clock" );
-
- #else
-
- resource 'clok' (-1212, "Tick Clock") {
- $$resource($$Shell("warholObjects")"Clocks:SoundClock",'clok', -1212);
- };
-
- #endif
-